MySetStatusMsg
Handles any status messages passed back by an instantiated applet. This is how you would define your output function if you were to name itMySetStatusMsg
:
void MySetStatusMsg (JMAppletViewerRef viewer, const char* statusMsg);
viewer
- The current applet.
statusMsg
- The status text passed by the applet.
DISCUSSION
When callingJMNewAppletViewer
, you must designate this function in the applet callbacks data structure. The function can display the status message or ignore it, whichever is appropriate.SEE ALSO
TheJMNewAppletViewer
function.